type bytes.readOp

9 uses

	bytes (current package)
		buffer.go#L23: 	lastRead readOp // last read operation, so that Unread* can work correctly.
		buffer.go#L36: type readOp int8
		buffer.go#L41: 	opRead      readOp = -1 // Any other read operation.
		buffer.go#L42: 	opInvalid   readOp = 0  // Non-read operation.
		buffer.go#L43: 	opReadRune1 readOp = 1  // Read rune of size 1.
		buffer.go#L44: 	opReadRune2 readOp = 2  // Read rune of size 2.
		buffer.go#L45: 	opReadRune3 readOp = 3  // Read rune of size 3.
		buffer.go#L46: 	opReadRune4 readOp = 4  // Read rune of size 4.
		buffer.go#L393: 	b.lastRead = readOp(n)